home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRAPHICS / IMGLIB95 / DEMOALL.DP_ / DEMOALL.DP
Text File  |  1996-03-31  |  355b  |  21 lines

  1. program Demoall;
  2.  
  3. uses
  4.   Forms,
  5.   Udemo in 'UDEMO.PAS' {Form1},
  6.   Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  7.   Uabout in 'UABOUT.PAS' {AboutBox};
  8.  
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TDemoForm1, DemoForm1);
  14.   Application.CreateForm(TFullSlide, FullSlide);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.  
  19.  
  20.  
  21.